home *** CD-ROM | disk | FTP | other *** search
- bIsWithin = false;
- this.onEnterFrame = function()
- {
- if(bIsWithin)
- {
- _level0.MCTIP._x = _level0._xmouse + 15;
- _level0.MCTIP._y = _level0._ymouse + 15;
- }
- };
- stop();
- BTTNMARK.onRelease = function()
- {
- _level0.showStar(_name.substr(2,-1));
- };
- BTTNMARK.onRollOver = function()
- {
- bIsWithin = true;
- _level0.MCTIP.oTip = _level0.a_STARDATA[_name.substr(2,-1) - 1][0];
- };
- BTTNMARK.onRollOut = function()
- {
- bIsWithin = false;
- _level0.MCTIP._x = _level0.MCTIP._y = -50;
- };
- BTTNMARK.onDragOut = function()
- {
- BTTNMARK.onRollOut();
- };
- BTTNMARK.onDragOver = function()
- {
- BTTNMARK.onRollOver();
- };
-